home *** CD-ROM | disk | FTP | other *** search
/ Risc World 5 / Risc World 5.iso / SOFTWARE / Issue3 / Games / xrick / !xrick / include / h / config next >
Text File  |  2004-06-24  |  932b  |  46 lines

  1. /*
  2.  * xrick/include/config.h
  3.  *
  4.  * Copyright (C) 1998-2002 BigOrno (bigorno@bigorno.net). All rights reserved.
  5.  *
  6.  * The use and distribution terms for this software are contained in the file
  7.  * named README, which can be found in the root of this distribution. By
  8.  * using this software in any fashion, you are agreeing to be bound by the
  9.  * terms of this license.
  10.  *
  11.  * You must not remove this notice, or any other, from this software.
  12.  */
  13.  
  14. #ifndef _CONFIG_H
  15. #define _CONFIG_H
  16.  
  17. /* version */
  18. #define VERSION "021212"
  19.  
  20. /* graphics (choose one) */
  21. #define GFXST
  22. #undef GFXPC
  23.  
  24. /* joystick support */
  25. #undef ENABLE_JOYSTICK
  26.  
  27. /* sound support */
  28. #define ENABLE_SOUND
  29.  
  30. /* cheats support */
  31. #define ENABLE_CHEATS
  32.  
  33. /* auto-defocus support */
  34. /* does seem to cause all sorts of problems on BeOS, Windows... */
  35. #undef ENABLE_FOCUS
  36.  
  37. /* development tools */
  38. #undef ENABLE_DEVTOOLS
  39. #undef DEBUG /* see include/debug.h */
  40.  
  41. #endif
  42.  
  43. /* eof */
  44.  
  45.  
  46.